Cách dùng markdown

Basic Syntax

Headers

# H1
## H2
### H3
#### H4
##### H5
###### H6

Emphasis

*italic* or _italic_
**bold** or __bold__
**_bold italic_** or **_bold italic_**
~~strikethrough~~

Lists

Unordered:

- Item 1
- Item 2
  - Subitem 2.1
  - Subitem 2.2

Ordered:

1. First item
2. Second item
3. Third item

Links

[Link text](URL)
[Link with title](URL "Title")

Images

![Alt text](image.jpg)
![Alt text](image.jpg "Image title")

Code

Inline code: code

Code blocks:

```language
code block
```

Blockquotes

> Blockquote
> Multiple lines
>> Nested blockquotes

Tables

| Header 1 | Header 2 |
|----------|----------|
| Cell 1   | Cell 2   |
| Cell 3   | Cell 4   |

Horizontal Rule

---
***
___

Extended Syntax

Task Lists

- [x] Completed task
- [ ] Uncompleted task

Footnotes

Here's a sentence with a footnote[^1].
[^1]: This is the footnote.

Heading IDs

### My Heading {#custom-id}

Definition Lists

Term
: Definition

Emoji

:smile: :heart: :thumbsup:

Remember to check your Markdown processor's support for extended syntax features.

Basic Syntax

Headers

H1

H2

H3

H4

H5
H6

Emphasis

italic or italic bold or bold bold italic or bold italic ~~strikethrough~~

Lists

Unordered:

  • Item 1
  • Item 2
    • Subitem 2.1
    • Subitem 2.2

Ordered:

  1. First item
  2. Second item
  3. Third item

Links

Link text Link with title

Images

Alt text Alt text

Code

Inline code: code

Code blocks:

code block

Blockquotes

Blockquote Multiple lines

Nested blockquotes

Tables

| Header 1 | Header 2 | |----------|----------| | Cell 1 | Cell 2 | | Cell 3 | Cell 4 |

Horizontal Rule




Extended Syntax

Task Lists

  • [x] Completed task
  • [ ] Uncompleted task

Footnotes

Here's a sentence with a footnote[^1]. [^1]: This is the footnote.

Heading IDs

My Heading 3

Definition Lists

Term : Definition

Emoji

:smile: :heart: :thumbsup:

Remember to check your Markdown processor's support for extended syntax features.

$2^2=4$